///Name: Ian Grant
///Period:5
///Project Name: Simple Web Input
///File Name:SimpleWebInput.java
///00/00/16
import java.net.URL;
import java.util.Scanner;
public class SimpleWebInput {
public static void main(String[] args) throws Exception {
URL mURL = new URL("http://llhscp-iag.neocities.org/");
Scanner webIn = new Scanner(mURL.openStream());
while (webIn.hasNext())
{
String one = webIn.nextLine();
System.out.println(one);
}
webIn.close();
}
}